8dea842830a106fb676796217a3097882e8bb17f,spring-statemachine-core/src/main/java/org/springframework/statemachine/state/RegionState.java,RegionState,exit,#StateContext#,129

Before Change


			}
			region.stop();
		}
		Collection<? extends Action<S, E>> actions = getExitActions();
		if (actions != null) {
			for (Action<S, E> action : actions) {
				executeAction(action, context);
			}

After Change


			}
			region.stop();
		}
		for (Action<S, E> action : getExitActions()) {
			executeAction(action, context);
		}
	}